home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209b.zip / octave-2.09 / doc / oct-faq (.txt) < prev    next >
GNU Info File  |  1997-08-20  |  29KB  |  602 lines

  1. This is Info file oct-faq, produced by Makeinfo-1.64 from the input
  2. file oct-faq.tex.
  3. File: oct-faq,  Node: Top,  Next: What is Octave?,  Prev: (dir),  Up: (dir)
  4. Preface
  5. *******
  6.    This is a list of frequently asked questions (FAQ) for Octave users.
  7.    Some information in this FAQ was written for earlier versions of
  8. Octave and may now be obsolete.
  9.    I'm looking for new questions (*with* answers), better answers, or
  10. both.  Please send suggestions to bug-octave@bevo.che.wisc.edu.  If you
  11. have general questions about Octave, or need help for something that is
  12. not covered by the Octave manual or the FAQ, please use the
  13. help-octave@bevo.che.wisc.edu mailing list.
  14.    This FAQ is intended to supplement, not replace, the Octave manual.
  15. Before posting a question to the help-octave mailing list, you should
  16. first check to see if the topic is covered in the manual.
  17. * Menu:
  18. * What is Octave?::
  19. * Version 2.0::
  20. * Octave Features::
  21. * Documentation::
  22. * Getting Octave::
  23. * Installation::
  24. * Common problems::
  25. * Getting additional help::
  26. * Bug reports::
  27. * MATLAB compatibility::
  28. * Index::
  29. File: oct-faq,  Node: What is Octave?,  Next: Version 2.0,  Prev: Top,  Up: Top
  30. What is Octave?
  31. ***************
  32.    Octave is a high-level interactive language, primarily intended for
  33. numerical computations that is mostly compatible with MATLAB.(1)
  34.    Octave can do arithmetic for real and complex scalars and matrices,
  35. solve sets of nonlinear algebraic equations, integrate functions over
  36. finite and infinite intervals, and integrate systems of ordinary
  37. differential and differential-algebraic equations.
  38.    Octave uses the GNU readline library to handle reading and editing
  39. input.  By default, the line editing commands are similar to the cursor
  40. movement commands used by GNU Emacs, and a vi-style line editing
  41. interface is also available.  At the end of each session, the command
  42. history is saved, so that commands entered during previous sessions are
  43. not lost.
  44.    The Octave distribution includes a 200+ page Texinfo manual.  Access
  45. to the complete text of the manual is available via the help command at
  46. the Octave prompt.
  47.    Two and three dimensional plotting is fully supported using gnuplot.
  48.    The underlying numerical solvers are currently standard Fortran ones
  49. like Lapack, Linpack, Odepack, the Blas, etc., packaged in a library of
  50. C++ classes.  If possible, the Fortran subroutines are compiled with
  51. the system's Fortran compiler, and called directly from the C++
  52. functions.  If that's not possible, you can still compile Octave if you
  53. have the free Fortran to C translator f2c.
  54.    Octave is also free software; you can redistribute it and/or modify
  55. it under the terms of the GNU General Public License as published by the
  56. Free Software Foundation.
  57.    ---------- Footnotes ----------
  58.    (1)  MATLAB is a registered trademark of The MathWorks, Inc.
  59. File: oct-faq,  Node: Version 2.0,  Next: Octave Features,  Prev: What is Octave?,  Up: Top
  60. What's new in version 2.0 of Octave
  61. ***********************************
  62.    The long-awaited version 2.0 of Octave has now been released.  Many
  63. bugs have been fixed and lots of new features added.  Octave is now much
  64. more compatible with MATLAB.
  65.    Version 2.0 fixes many bugs, but as with any "x.y.0" release there
  66. will be a few glitches.  There will probably be a 2.0.1 release to fix
  67. most of these problems.  You can help contribute to the quality of
  68. Octave by using it and submitting bug reports for the problems you
  69. encounter.
  70.    A list of user-visible changes in recent versions of Octave may be
  71. found in the file NEWS, distributed in both source and binary releases
  72. of Octave.
  73. File: oct-faq,  Node: Octave Features,  Next: Documentation,  Prev: Version 2.0,  Up: Top
  74. What features are unique to Octave?
  75. ***********************************
  76. * Menu:
  77. * Command and variable name completion::
  78. * Command history::
  79. * Data structures::
  80. * Short-circuit boolean operators::
  81. * Increment and decrement operators::
  82. * Unwind-protect::
  83. * Variable-length argument lists::
  84. * Variable-length return lists::
  85. * Built-in ODE and DAE solvers::
  86. File: oct-faq,  Node: Command and variable name completion,  Next: Command history,  Prev: Octave Features,  Up: Octave Features
  87. Command and variable name completion
  88. ====================================
  89.    Typing a TAB character (ASCII code 9) on the command line causes
  90. Octave to attempt to complete variable, function, and file names.
  91. Octave uses the text before the cursor as the initial portion of the
  92. name to complete.
  93.    For example, if you type `fu' followed by TAB at the Octave prompt,
  94. Octave will complete the rest of the name `function' on the command
  95. line (unless you have other variables or functions defined that begin
  96. with the characters `fu').  If there is more than one possible
  97. completion, Octave will ring the terminal bell to let you know that your
  98. initial sequence of characters is not enough to specify a unique name.
  99. To complete the name, you may either edit the initial character sequence
  100. (usually adding more characters until completion is possible) or type
  101. another TAB to cause Octave to display the list of possible completions.
  102. File: oct-faq,  Node: Command history,  Next: Data structures,  Prev: Command and variable name completion,  Up: Octave Features
  103. Command history
  104. ===============
  105.    When running interactively, Octave saves the commands you type in an
  106. internal buffer so that you can recall and edit them.  Emacs and vi
  107. editing modes are available with Emacs keybindings enabled by default.
  108.    When Octave exits, the current command history is saved to the file
  109. `~/.octave_hist', and each time Octave starts, it inserts the contents
  110. of the `~/.octave_hist' file in the history list so that it is easy to
  111. begin working where you left off.
  112. File: oct-faq,  Node: Data structures,  Next: Short-circuit boolean operators,  Prev: Command history,  Up: Octave Features
  113. Data structures
  114. ===============
  115.    Octave includes a limited amount of support for organizing data in
  116. structures.  The current implementation uses an associative array with
  117. indices limited to strings, but the syntax is more like C-style
  118. structures.  Here are some examples of using data structures in Octave.
  119.    * Elements of structures can be of any value type.
  120.           octave:1> x.a = 1; x.b = [1, 2; 3, 4]; x.c = "string";
  121.           octave:2> x.a
  122.           x.a = 1
  123.           octave:3> x.b
  124.           x.b =
  125.           
  126.             1  2
  127.             3  4
  128.           
  129.           octave:4> x.c
  130.           x.c = string
  131.    * Structures may be copied.
  132.           octave:1> y = x
  133.           y =
  134.           {
  135.             a = 1
  136.             b =
  137.           
  138.               1  2
  139.               3  4
  140.           
  141.             c = string
  142.             s =
  143.           
  144.               0.00000  0.00000  0.00000
  145.               0.00000  5.46499  0.00000
  146.               0.00000  0.00000  0.36597
  147.           
  148.             u =
  149.           
  150.               -0.40455  -0.91451
  151.               -0.91451   0.40455
  152.           
  153.             v =
  154.           
  155.               -0.57605   0.81742
  156.               -0.81742  -0.57605
  157.           }
  158.    * Structure elements may reference other structures.
  159.           octave:1> x.b.d = 3
  160.           x.b.d = 3
  161.           octave:2> x.b
  162.           ans =
  163.           {
  164.             d = 3
  165.           }
  166.           octave:3> x.b.d
  167.           ans = 3
  168.    * Functions can return structures.
  169.           octave:1> function y = f (x)
  170.           > y.re = real (x);
  171.           > y.im = imag (x);
  172.           > endfunction
  173.           
  174.           octave:2> f (rand + rand*I);
  175.           ans =
  176.           {
  177.             im = 0.18033
  178.             re = 0.19069
  179.           }
  180.    * Function return lists can include structure elements, and they may
  181.      be indexed like any other variable.
  182.           octave:1> [x.u, x.s(2:3,2:3), x.v] = svd ([1, 2; 3, 4]);
  183.           octave:2> x
  184.           x =
  185.           {
  186.             s =
  187.           
  188.               0.00000  0.00000  0.00000
  189.               0.00000  5.46499  0.00000
  190.               0.00000  0.00000  0.36597
  191.           
  192.             u =
  193.           
  194.               -0.40455  -0.91451
  195.               -0.91451   0.40455
  196.           
  197.             v =
  198.           
  199.               -0.57605   0.81742
  200.               -0.81742  -0.57605
  201.           }
  202.    * You can also use the function `is_struct' to determine whether a
  203.      given value is a data structure.  For example
  204.           is_struct (x)
  205.      returns 1 if the value of the variable X is a data structure.
  206.    This feature should be considered experimental, but you should
  207. expect it to work.  Suggestions for ways to improve it are welcome.
  208. File: oct-faq,  Node: Short-circuit boolean operators,  Next: Increment and decrement operators,  Prev: Data structures,  Up: Octave Features
  209. Short-circuit boolean operators
  210. ===============================
  211.    Octave's `&&' and `||' logical operators are evaluated in a
  212. short-circuit fashion (like the corresponding operators in the C
  213. language) and work differently than the element by element operators
  214. `&' and `|'.
  215. File: oct-faq,  Node: Increment and decrement operators,  Next: Unwind-protect,  Prev: Short-circuit boolean operators,  Up: Octave Features
  216. Increment and decrement operators
  217. =================================
  218.    Octave includes the C-like increment and decrement operators `++'
  219. and `--' in both their prefix and postfix forms.
  220.    For example, to pre-increment the variable X, you would write `++X'.
  221. This would add one to X and then return the new value of X as the
  222. result of the expression.  It is exactly the same as the expression `X
  223. = X + 1'.
  224.    To post-increment a variable X, you would write `X++'.  This adds
  225. one to the variable X, but returns the value that X had prior to
  226. incrementing it.  For example, if X is equal to 2, the result of the
  227. expression `X++' is 2, and the new value of X is 3.
  228.    For matrix and vector arguments, the increment and decrement
  229. operators work on each element of the operand.
  230.    It is not currently possible to increment index expressions.  For
  231. example, you might expect that the expression `V(4)++' would increment
  232. the fourth element of the vector V, but instead it results in a parse
  233. error.  This problem may be fixed in a future release of Octave.
  234. File: oct-faq,  Node: Unwind-protect,  Next: Variable-length argument lists,  Prev: Increment and decrement operators,  Up: Octave Features
  235. Unwind-protect
  236. ==============
  237.    Octave supports a limited form of exception handling modelled after
  238. the unwind-protect form of Lisp.  The general form of an
  239. `unwind_protect' block looks like this:
  240.      unwind_protect
  241.        BODY
  242.      unwind_protect_cleanup
  243.        CLEANUP
  244.      end_unwind_protect
  245. Where BODY and CLEANUP are both optional and may contain any Octave
  246. expressions or commands.  The statements in CLEANUP are guaranteed to
  247. be executed regardless of how control exits BODY.
  248.    The `unwind_protect' statement is often used to reliably restore the
  249. values of global variables that need to be temporarily changed.
  250. File: oct-faq,  Node: Variable-length argument lists,  Next: Variable-length return lists,  Prev: Unwind-protect,  Up: Octave Features
  251. Variable-length argument lists
  252. ==============================
  253.    Octave has a real mechanism for handling functions that take an
  254. unspecified number of arguments, so it is no longer necessary to place
  255. an upper bound on the number of optional arguments that a function can
  256. accept.
  257.    Here is an example of a function that uses the new syntax to print a
  258. header followed by an unspecified number of values:
  259.      function foo (heading, ...)
  260.        disp (heading);
  261.        va_start ();
  262.        while (--nargin)
  263.          disp (va_arg ());
  264.        endwhile
  265.      endfunction
  266.    Calling `va_start()' positions an internal pointer to the first
  267. unnamed argument and allows you to cycle through the arguments more than
  268. once.  It is not necessary to call `va_start()' if you do not plan to
  269. cycle through the arguments more than once.
  270.    The function `va_arg()' returns the value of the next available
  271. argument and moves the internal pointer to the next argument.  It is an
  272. error to call `va_arg()' when there are no more arguments available.
  273.    It is also possible to use the keyword ALL_VA_ARGS to pass all
  274. unnamed arguments to another function.
  275. File: oct-faq,  Node: Variable-length return lists,  Next: Built-in ODE and DAE solvers,  Prev: Variable-length argument lists,  Up: Octave Features
  276. Variable-length return lists
  277. ============================
  278.    Octave also has a real mechanism for handling functions that return
  279. an unspecified number of values, so it is no longer necessary to place
  280. an upper bound on the number of outputs that a function can produce.
  281.    Here is an example of a function that uses the new syntax to produce
  282. `N' values:
  283.      function [...] = foo (n)
  284.        for i = 1:n
  285.          vr_val (i);
  286.        endfor
  287.      endfunction
  288. File: oct-faq,  Node: Built-in ODE and DAE solvers,  Prev: Variable-length return lists,  Up: Octave Features
  289. Built-in ODE and DAE solvers
  290. ============================
  291.    Octave includes LSODE and DASSL for solving systems of stiff ordinary
  292. differential and differential-algebraic equations.  These functions are
  293. built in to the interpreter.
  294. File: oct-faq,  Node: Documentation,  Next: Getting Octave,  Prev: Octave Features,  Up: Top
  295. What documentation exists for Octave?
  296. *************************************
  297.    The Octave distribution includes a 220+ page manual that is also
  298. distributed under the terms of the GNU GPL.
  299.    The Octave manual is intended to be a complete reference for Octave,
  300. but it is not a finished document.  If you have problems using it, or
  301. find that some topic is not adequately explained, indexed, or
  302. cross-referenced, please send a bug report to
  303. bug-octave@bevo.che.wisc.edu.
  304.    Because the Octave manual is written using Texinfo, the complete
  305. text of the Octave manual is also available on line using the GNU Info
  306. system via the GNU Emacs, info, or xinfo programs, or by using the
  307. `help -i' command to start the GNU info browser directly from the
  308. Octave prompt.
  309.    It is also possible to use your favorite WWW browser to read the
  310. Octave manual (or any other Info file) by using Roar Smith's info2www
  311. program to convert GNU Info files to HTML.  The source for info2www is
  312. available from (ftp://ftp.che.wisc.edu/pub/www).
  313. File: oct-faq,  Node: Getting Octave,  Next: Installation,  Prev: Documentation,  Up: Top
  314. Obtaining Source Code
  315. *********************
  316. * Menu:
  317. * Octave for Unix::
  318. * Octave for other platforms::
  319. * latest versions::
  320. File: oct-faq,  Node: Octave for Unix,  Next: Octave for other platforms,  Prev: Getting Octave,  Up: Getting Octave
  321. How do I get a copy of Octave for Unix?
  322. =======================================
  323.    You can get Octave from a friend who has a copy, by anonymous FTP,
  324. or by ordering a tape or CD-ROM from the Free Software Foundation (FSF).
  325.    Octave was not developed by the FSF, but the FSF does distribute
  326. Octave, and the developers of Octave support the efforts of the FSF by
  327. encouraging users of Octave to order Octave on tape or CD directly from
  328. the FSF.
  329.    The FSF is a nonprofit organization that distributes software and
  330. manuals to raise funds for more GNU development.  Buying a tape or CD
  331. from the FSF contributes directly to paying staff to develop GNU
  332. software.  CD-ROMs cost $400 if an organization is buying, or $100 if an
  333. individual is buying.  Tapes cost around $200 depending on media type.
  334.    The FSF only makes new CD releases a few times a year, so if you are
  335. interested specifically in Octave, I recommend asking for the latest
  336. release on tape.
  337.    For more information about ordering from the FSF, contact
  338. gnu@prep.ai.mit.edu, phone (617) 542-5942 or anonymous ftp file
  339. `/pub/gnu/GNUinfo/ORDERS' from prep.ai.mit.edu or one of the sites
  340. listed below.
  341.    If you are on the Internet, you can copy the latest distribution
  342. version of Octave from the file `/pub/octave/octave-M.N.tar.gz', on the
  343. host `ftp.che.wisc.edu'.  This tar file has been compressed with GNU
  344. gzip, so be sure to use binary mode for the transfer.  `M' and `N'
  345. stand for version numbers; look at a listing of the directory through
  346. ftp to see what version is available.  After you unpack the
  347. distribution, be sure to look at the files `README' and `INSTALL'.
  348.    Binaries for several popular systems are also available.  If you
  349. would like help out by making binaries available for other systems,
  350. please contact bug-octave@bevo.che.wisc.edu.
  351.    A list of user-visible changes since the last release is available in
  352. the file `NEWS'.  The file `ChangeLog' in the source distribution
  353. contains a more detailed record of changes made since the last release.
  354. File: oct-faq,  Node: Octave for other platforms,  Next: latest versions,  Prev: Octave for Unix,  Up: Getting Octave
  355. How do I get a copy of Octave for (some other platform)?
  356. ========================================================
  357.    Octave currently runs on Unix-like systems only.  It should be
  358. possible to make Octave work on other systems.  If you are interested
  359. in porting Octave to other systems, please contact
  360. bug-octave@bevo.che.wisc.edu.
  361. File: oct-faq,  Node: latest versions,  Prev: Octave for other platforms,  Up: Getting Octave
  362. What is the latest version of Octave
  363. ====================================
  364.    The latest version of Octave is 2.0, released December 1996.
  365. File: oct-faq,  Node: Installation,  Next: Common problems,  Prev: Getting Octave,  Up: Top
  366. Installation Issues and Problems
  367. ********************************
  368.    Octave requires approximately 50MB of disk storage to unpack and
  369. install (significantly less if you don't compile with debugging
  370. symbols).
  371.    Octave has been compiled and tested with g++ and libg++ on a
  372. SPARCstation 2 running SunOS 4.1.2, an IBM RS/6000 running AIX 3.2.5,
  373. DEC Alpha systems running OSF/1 1.3 and 3.0, a DECstation 5000/240
  374. running Ultrix 4.2a, and i486 systems running Linux.  It should work on
  375. most other Unix systems that have a working port of g++ and libg++.
  376. * Menu:
  377. * What else do I need?::
  378. * Other C++ compilers?::
  379. File: oct-faq,  Node: What else do I need?,  Next: Other C++ compilers?,  Prev: Installation,  Up: Installation
  380. What else do I need?
  381. ====================
  382.    In order to build Octave, you will need a current version of g++,
  383. libg++, and GNU make.  If you don't have these tools, you can get them
  384. from many anonymous ftp archives, including ftp.che.wisc.edu,
  385. ftp.uu.net, prep.ai.mit.edu, and wuarchive.wustl.edu, or by writing to
  386. the FSF at 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  387. File: oct-faq,  Node: Other C++ compilers?,  Prev: What else do I need?,  Up: Installation
  388. Can I compile Octave with another C++ compiler?
  389. ===============================================
  390.    Currently, Octave can only be compiled with the GNU C++ compiler.  It
  391. would be nice to make it possible to compile Octave with other C++
  392. compilers, but the maintainers do not have sufficient time to devote to
  393. this.  If you are interested in working to make Octave portable to other
  394. compilers, please contact bug-octave@bevo.che.wisc.edu.
  395. File: oct-faq,  Node: Common problems,  Next: Getting additional help,  Prev: Installation,  Up: Top
  396. Common problems
  397. ***************
  398.    This list is probably far too short.  Feel free to suggest additional
  399. questions (preferably with answers!)
  400.    * Octave takes a long time to find symbols.
  401.      Octave is probably spending this time recursively searching
  402.      directories for function files.  Check the value of your LOADPATH.
  403.      For those elements that end in `//', do any name a very large
  404.      directory tree?  Does it contain directories that have a mixture
  405.      of files and directories?  In order for the recursive directory
  406.      searching code to work efficiently, directories that are to be
  407.      searched recursively should have either function files only, or
  408.      subdirectories only, but not a mixture of both.  Check to make
  409.      sure that Octave's standard set of function files is installed
  410.      this way.
  411. File: oct-faq,  Node: Getting additional help,  Next: Bug reports,  Prev: Common problems,  Up: Top
  412. Getting additional help
  413. ***********************
  414.    The mailing list
  415.      help-octave@bevo.che.wisc.edu
  416. is available for questions related to using, installing, and porting
  417. Octave that are not adequately answered by the Octave manual or by this
  418. document.
  419.    If you would like to join the discussion and receive all messages
  420. sent to the list, please send a short note to
  421.      help-octave-request@bevo.che.wisc.edu
  422.                  ^^^^^^^
  423.    *Please do not* send requests to be added or removed from the the
  424. mailing list, or other administrative trivia to the list itself.
  425.    An archive of old postings to the help-octave mailing list is
  426. maintained on ftp.che.wisc.edu in the directory
  427. `/pub/octave/MAILING-LISTS'.
  428. File: oct-faq,  Node: Bug reports,  Next: MATLAB compatibility,  Prev: Getting additional help,  Up: Top
  429. I think I have found a bug in Octave.
  430. *************************************
  431.    "I think I have found a bug in Octave, but I'm not sure.  How do I
  432. know, and who should I tell?"
  433.    First, see the section on bugs and bug reports in the Octave manual.
  434. The Octave manual is included in the Octave distribution.
  435.    When you report a bug, make sure to describe the type of computer you
  436. are using, the version of the operating system it is running, and the
  437. version of Octave that you are using.  Also provide enough code so that
  438. the Octave maintainers can duplicate your bug.
  439.    If you have Octave working at all, the easiest way to do this is to
  440. use the Octave function `bug_report'.  When you execute this function,
  441. Octave will prompt you for a subject and then invoke the editor on a
  442. file that already contains all the configuration information.  When you
  443. exit the editor, Octave will mail the bug report for you.
  444.    If for some reason you cannot use Octave's `bug_report' function,
  445. mail your bug report to "bug-octave@bevo.che.wisc.edu".  Your message
  446. needs to include enough information to allow the maintainers of Octave
  447. to fix the bug.  Please read the section on bugs and bug reports in the
  448. Octave manual for a list of things that should be included in every bug
  449. report.
  450. File: oct-faq,  Node: MATLAB compatibility,  Next: Index,  Prev: Bug reports,  Up: Top
  451. Porting programs from MATLAB to Octave
  452. **************************************
  453.    "I wrote some code for MATLAB, and I want to get it running under
  454. Octave.  Is there anything I should watch out for?"
  455.    The differences between Octave and MATLAB typically fall into one of
  456. three categories:
  457.   1. Irrelevant.
  458.   2. Known differences, perhaps configurable with a user preference
  459.      variable.
  460.   3. Unknown differences.
  461.    The first category, irrelevant differences, do not affect
  462. computations and most likely do not affect the execution of function
  463. files.
  464.    The differences of the second category are usually because the
  465. authors of Octave decided on a better (subjective) implementation that
  466. the way MATLAB does it, and so introduced "user preference variables"
  467. so that you can customize Octave's behavior to be either
  468. MATLAB-compatible or to use Octave's new features.  To make Octave more
  469. MATLAB-compatible, put the following statements in your `~/.octaverc'
  470. file, or use the command line option `--traditional', which implies all
  471. of these settings.  Note that this list may not be complete, because
  472. some new variables may have been introduced since this document was
  473. last updated.
  474.        PS1 = ">> ";
  475.        PS2 = "";
  476.        beep_on_error = 1;
  477.        default_save_format = "mat-binary";
  478.        define_all_return_values = 1;
  479.        do_fortran_indexing = 1;
  480.        empty_list_elements_ok = 1;
  481.        implicit_str_to_num_ok = 1;
  482.        ok_to_lose_imaginary_part = 1;
  483.        page_screen_output = 0;
  484.        prefer_column_vectors = 0;
  485.        prefer_zero_one_indexing = 1;
  486.        print_empty_dimensions = 0;
  487.        treat_neg_dim_as_zero = 1;
  488.        warn_function_name_clash = 0;
  489.        whitespace_in_literal_matrix = "traditional";
  490.    Some other known differences are:
  491.    * The Octave plotting functions are mostly compatible with the ones
  492.      from MATLAB 3.x, but not from MATLAB 4.x.
  493.    The third category of differences is (hopefully) shrinking.  If you
  494. find a difference between Octave behavior and MATLAB, then you should
  495. send a description of this difference (with code illustrating the
  496. difference, if possible) to bug-octave@bevo.che.wisc.edu.
  497.    An archive of old postings to the Octave mailing lists is maintained
  498. on ftp.che.wisc.edu in the directory `/pub/octave/MAILING-LISTS'.
  499. File: oct-faq,  Node: Index,  Prev: MATLAB compatibility,  Up: Top
  500. Concept Index
  501. *************
  502. * Menu:
  503. * MATLAB compatibility:                 MATLAB compatibility.
  504. * Additional help:                      Getting additional help.
  505. * Argument lists, variable-length:      Variable-length argument lists.
  506. * Boolean operators, short-circuit:     Short-circuit boolean operators.
  507. * Bug in Octave, newly found:           Bug reports.
  508. * Command completion:                   Command and variable name completion.
  509. * Command history:                      Command history.
  510. * Compatibility with MATLAB:            MATLAB compatibility.
  511. * DASSL:                                Built-in ODE and DAE solvers.
  512. * Data structures:                      Data structures.
  513. * Decrement operators:                  Increment and decrement operators.
  514. * DJGPP:                                Octave for other platforms.
  515. * EMX:                                  Octave for other platforms.
  516. * FAQ for Octave, latest version:       Top.
  517. * Flex:                                 What else do I need?.
  518. * FSF [Free Software Foundation]:       Octave for Unix.
  519. * FSF, contact <gnu@prep.ai.mit.edu>:   Octave for Unix.
  520. * Function name completion:             Command and variable name completion.
  521. * GNU Bison:                            What else do I need?.
  522. * GNU g++:                              What else do I need?.
  523. * GNU gcc:                              What else do I need?.
  524. * GNU Make:                             What else do I need?.
  525. * GNU [GNU's not unix]:                 Octave for Unix.
  526. * GNUware, anonymous FTP sites:         Octave for Unix.
  527. * History:                              Command history.
  528. * Increment operators:                  Increment and decrement operators.
  529. * libg++:                               What else do I need?.
  530. * Logical operators, short-circuit:     Short-circuit boolean operators.
  531. * LSODE:                                Built-in ODE and DAE solvers.
  532. * Mailing lists, bug-octave:            Bug reports.
  533. * Mailing lists, help-octave:           Getting additional help.
  534. * Manual, for Octave:                   Bug reports.
  535. * MS-DOS support:                       Octave for other platforms.
  536. * Name completion:                      Command and variable name completion.
  537. * Octave bug report:                    Bug reports.
  538. * Octave, building:                     Installation.
  539. * Octave, documentation:                Documentation.
  540. * Octave, getting a copy:               Octave for Unix.
  541. * Octave, ordering:                     Octave for Unix.
  542. * Octave, version date:                 latest versions.
  543. * Operators, boolean:                   Short-circuit boolean operators.
  544. * Operators, decrement:                 Increment and decrement operators.
  545. * Operators, increment:                 Increment and decrement operators.
  546. * OS/2 support:                         Octave for other platforms.
  547. * Return lists, variable-length:        Variable-length return lists.
  548. * Short-circuit boolean operators:      Short-circuit boolean operators.
  549. * Source code:                          Getting Octave.
  550. * Structures:                           Data structures.
  551. * Unwind-protect:                       Unwind-protect.
  552. * Variable name completion:             Command and variable name completion.
  553. * Variable-length argument lists:       Variable-length argument lists.
  554. * Variable-length return lists:         Variable-length return lists.
  555. * VAX:                                  Octave for other platforms.
  556. * VMS support:                          Octave for other platforms.
  557. Tag Table:
  558. Node: Top
  559. Node: What is Octave?
  560. Node: Version 2.0
  561. Node: Octave Features
  562. Node: Command and variable name completion
  563. Node: Command history
  564. Node: Data structures
  565. Node: Short-circuit boolean operators
  566. Node: Increment and decrement operators
  567. Node: Unwind-protect
  568. 10202
  569. Node: Variable-length argument lists
  570. 10971
  571. Node: Variable-length return lists
  572. 12246
  573. Node: Built-in ODE and DAE solvers
  574. 12856
  575. Node: Documentation
  576. 13203
  577. Node: Getting Octave
  578. 14317
  579. Node: Octave for Unix
  580. 14536
  581. Node: Octave for other platforms
  582. 16685
  583. Node: latest versions
  584. 17139
  585. Node: Installation
  586. 17376
  587. Node: What else do I need?
  588. 18083
  589. Node: Other C++ compilers?
  590. 18584
  591. Node: Common problems
  592. 19117
  593. Node: Getting additional help
  594. 20045
  595. Node: Bug reports
  596. 20869
  597. Node: MATLAB compatibility
  598. 22254
  599. Node: Index
  600. 24640
  601. End Tag Table
  602.